home *** CD-ROM | disk | FTP | other *** search
- on inits
- global monolist, monoclist, keydetect, event
- set monolist to ["022,B", "022,C", "022,D", "022,F", "022,J", "022,K", "022,L", "022,P", "022,S", "022,T", "022,U", "022,V", "022,Y"]
- set monoclist to []
- set a to count(monolist)
- repeat with i = 1 to a
- set mono to getAt(monolist, random(count(monolist)))
- add(monoclist, mono)
- deleteAt(monolist, getPos(monolist, mono))
- end repeat
- add(monoclist, "001,empty")
- repeat with i = 2 to 7
- puppetSprite(i, 1)
- set the ink of sprite i to 0
- set the type of sprite i to 1
- set the foreColor of sprite i to 255
- set the backColor of sprite i to 0
- end repeat
- end
-
- on columnset num
- repeat with i = 1 to 3
- repeat with t = 1 to 2
- set monoc to getAt(monoclist, ((num - 1) * 2) + ((i - 1) * 2) + t)
- set spnum to (2 * (i - 1)) + t + 1
- set the castNum of sprite spnum to the number of member monoc
- set the locH of sprite spnum to 130 + ((i - 1) * 189)
- set the locV of sprite spnum to 162 + ((t - 1) * 156)
- end repeat
- end repeat
- end
-